home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacTech 1 to 12
/
MacTech-vol-1-12.toast
/
Source
/
MacTech® Magazine
/
Volume 03 - 1987
/
03.11 Nov 87
/
C string library
/
PStrLib Source
/
SetFont.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1987-10-21
|
219 b
|
12 lines
|
[
TEXT/KAHL
]
/* FILE: SetFont.c
Sets the txFont, txSize, txFace fields of the current GrafPort. */
#include "PStrLib.h"
SetFont(font, size, face)
int font, size;
Style face;
{
TextFont(font);
TextSize(size);
TextFace(face);
}